home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / TXT / LOCK.TXT < prev    next >
Text File  |  1997-01-07  |  563b  |  20 lines

  1. Locking RAM
  2. -----------
  3.  
  4. lock_ram,off:dword,siz:dword
  5.   - locks RAM
  6.   - under a DPMI server this will lock RAM using DPMI func #600h
  7.   - under RAW, XMS or a VCPI server this will simply return successful
  8.  
  9. unlock_ram,off:dword,siz:dword
  10.   - unlocks RAM
  11.  
  12. lock_all,useonly:byte
  13.   - attempts to lock ALL memory
  14.   - under Win95 this is VERY long and can take serveral minutes and sometimes
  15.     crashes system
  16.   - I suggest you only lock RAM using lock_ram() and only do about 1 to 2
  17.     megs at most (just lock video buffers and such for speed)
  18.  
  19.   
  20.